home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 1.iso / toolbox / src / exampleCode / opengl / lmwrap / ogl / Makefile < prev    next >
Encoding:
Makefile  |  1996-11-11  |  463 b   |  23 lines

  1. #!smake
  2.  
  3. include $(ROOT)/usr/include/make/commondefs
  4.  
  5. # debugging option
  6. LCOPTS    = -g
  7. #OPTIMIZER= -O2
  8.  
  9. LLDLIBS    = -lGLw -lGL -lGLU -lXm -lXt -lX11 -lPW
  10. # override the prototypes macro in commondefs:  if you want
  11. # prototyping turned on, comment out the next line.
  12. PROTOTYPES=
  13.  
  14. CFILES = init.c grafix.c main.c ui.c draw.c lmwrap.c
  15. TARGETS = lmOGL
  16.  
  17. default all: $(TARGETS)
  18.  
  19. include $(COMMONRULES)
  20.  
  21. $(TARGETS): $(OBJECTS) 
  22.     $(CCF) $(OBJECTS) $(LDFLAGS) -o $(TARGETS) 
  23.